home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / misc / emu / msh-156.lha / devs / MSH < prev    next >
Text File  |  1992-08-01  |  1KB  |  45 lines

  1. /*
  2.  *  Mount file for MSH under 2.1.
  3.  */
  4.     FileSystem = L:MessyFileSystem /* or messydos:l/MessyFileSystem */
  5.     Device = messydisk.device      /* or messydos:devs/messydisk.device */
  6.     Unit = 1
  7.     Flags = 0
  8. /*
  9.  *  HighCyl is ignored, LowCyl, Surfaces, BlocksPerTrack
  10.  *  and Reserved are used once to find the bootblock.
  11.  *  Further parameters are found there.
  12.  */
  13.     LowCyl = 0 ; HighCyl = 79
  14.     Reserved = 0
  15.     Surfaces = 2
  16.     BlocksPerTrack = 9
  17. /*
  18.  *  Initially the disk cache will be 5 sectors.
  19.  */
  20.     Buffers = 5
  21. /*
  22.  *  Our type of filesystem is 'MSD\0'.
  23.  */
  24.     DosType = 0x4D534400
  25. /*
  26.  *  If Interleave is set to 65536, MSH: will wait for DFx:
  27.  *  (where x depends on the Unit parameter above) to recognize
  28.  *  inserted disks (or not).
  29.  */
  30.     Interleave = 65536
  31. /*
  32.  *  Use BufMemType = 3 [for MEMF_CHIP | MEMF_PUBLIC] if you
  33.  *  use MSH: on the trackdisk.device.
  34.  */
  35.     BufMemType = 1    /* messydisk needs no chip mem */
  36.     BootPri = 0
  37.     Stacksize = 3072
  38.     Priority = 9
  39.     GlobVec  = -1
  40. /*
  41.  *  Immediately load and start the MessyFileSystem
  42.  *  when mounted.
  43.  */
  44.     Mount = 1
  45.